#linux kernel version
Explore tagged Tumblr posts
patchoulii-2hu-144p · 2 years ago
Text
Tumblr media
um i uninstalled and disabled snapd months ago??? this is windows level of bullshit.
23 notes · View notes
xerxestexastoast · 2 months ago
Text
kicking my computer in the SHINS. WHY DOES YOUR TRACKPAD NOT WORK IN LINUX
0 notes
quick-tutoriel · 8 months ago
Link
0 notes
sylveonellie · 6 months ago
Text
linux kernel version 6.6.66 LTS released - all christian linux users cowering in fear, satanists and other cool people excited to upgrade from version 6.6.6, kernel daemons reported to run 6.66% faster
139 notes · View notes
monsterqueers · 3 months ago
Text
So ive been using linux for a good while now, and its now officially my daily driver. Windows is now permabenched in a removed hhd in a drawer unless something awful happens. (Good riddance, havent truly enjoyed windows since xp)
And from this I think that people urging others to move to linux are not doing so in the correct way.
Instead of trying to push a friendly distro and insisting it will work for everything and everyone, instead check if the hardware they are using specifically is good for linux and if so what families.
One computer will be a breeze with any distro, another could have a few quirks but be basically fine, however another of the same year and manufacturer could be an uphill battle thats straight up unusable even for someone who knows how to do the kernel edit workarounds for all but specific distros, if that.
My desktop took linux mint like a dream, 100% painless with no fucking about to make it work and even no need for an ethernet cable to get things started. My dinosaur laptop (may it rest in peace after other components died) had a few issues but also worked very well with little effort with mint. My current junk laptop is an uphill battle that will require arch AND edits to the kernel paremeters to work without being filled with screen flashing and full system freezes at random and im still gearing up the gumption to give it another few attempts to actually pull it off.
Each of these computers is a VERY different experience, and if your prospective switcher is using a computer that doesnt play well, its NOT going to work, they will get frustrated, and they will give up. They have to work with what they have.
Instead of going right to telling them to switch and that anything is good, Encourage people to search up their pc+linux compatibility if they are looking to switch to determine if its viable for a newbie who doesnt want to struggle, then offer a distro that has a live usb/dvd version if possible for them to test without install, and a big enough userbase that troubleshooting is as painless as possible.
If its a laptop, archwiki has lists of those by maker (linked in the page given) with notes on what has been tested in that family of linux.
This, I think, above all, is the most important thing when trying to get people to switch:
MAKE SURE THEIR HARDWARE IS GOOD FOR IT
Not just the pc, but the peripherals too; their mouse, their mic, their webcam, their keyboard- these things are not always supported well.
Linux can be fast, easy, and really comfortable and painless with little to no troubleshooting or tedious workarounds to get your stuff to work; but you have to be using the right hardware.
Yes, make sure you have alternative programs lined up that are actually good (stop reccing gimp when krita is a way better P$ alternative for people trying to draw digitally), and maybe consider talking about how to run wine in a newbie friendly way for things they might need for work reasons that dont work on linux normally(and accept that it might not work even with wine), but above all, make sure that its not just being phrased as 'a you problem' when it might be their system that is the issue there.
For prospective switchers that tried but gave up because of glitches or freezes or things otherwise not working: It wasnt you being bad at computers. Sometimes it just doesnt work with that hardware well and there is nothing you can do. People dont warn you about this, but its a very real issue.
If you still want to try linux, when you eventually get a new computer in the future, look for one that seems to be supported by linux well- some pcs even come with linux preinstalled for you even (dell does this with ubuntu and ubuntu has skins that looks windows esque). Asking specifically for linux compatible or linux preinstalled computers signals to developers to make more computers that work with linux, and makes it easier to get linux friendly stuff.
If not, there are windows 11 neutering tools out there in the wild that are very useful and are a plenty fine alternative to switching. You should only switch if you want to switch.
73 notes · View notes
cozy-sims · 3 months ago
Text
Linux update! (And a few Nvidia tips)
After a dreadful day of trying to make this work, I'm reporting that The Sims 2 finally works on my new Linux system! 😭❤️ Admittedly I have made my own life harder setting this up, but the most important thing I've learned from this experience and thought it might worth sharing:
Before you try to install TS2 on your Linux, make sure that you have your graphics card's driver updated!
When I first installed The Sims 2 on Linux it was incredibly laggy and choppy, because the default Nouveau driver didn't work well enough with my Nvidia card. After I installed the Nvidia driver from the built in driver manager, the game just straightup crashed.
Then I had to find out that Mint's driver manager couldn't install the newest driver for my card (RTX 3070), and even when installed, it didn't work. 😂
So if you have an Nvidia card and struggling or planning to install Linux in the future, below the cut are a few useful tips that I've discovered in the depths of the Internet:
Check what driver the official Nvidia site recommends for your GPU. - I did this and it showed driver version 570.
2. I think this is optional, but open your terminal and type the cmd: sudo apt update - this will trigger Linux to update its driver list.
3. Open Driver Manager, and see if the recommended driver (570 in my case is available). For me it was not available, only the 550, this was my issue.
3.1. If you can see your required driver, awesome, install it from the driver manager and skip to step 5. 3.2. If not, you have to use this PPA. -> Meaning you have to open your terminal and enter the following commands (when I list multiple commands to run, first type the first one, press enter, then type the next one, press enter etc.): sudo add-apt-repository ppa:graphics-drivers/ ppa sudo apt update You can also find installation guide on the link above, but it's basically this. 4. Now you have to restart your system, and repeat Step 3. of this list. The newest driver should show up in your Driver Manager now, install it.
5. After installing, open your terminal and type the following command: inxi -G -> this will allow us to check if the driver works properly. Shock, it did not for me :D When working properly, it should look like this:
Display: x11 server: X.Org v: 21.1.11 with: Xwayland v: 23.2.6 driver: X: loaded: nvidia gpu: nvidia,nvidia-nvswitch resolution: 1:1920x1080~60Hz 2: 1920x1080~60Hz When not working, it looks like this: Example 1: Display: x11 server: X.Org v: 21.1.11 with: Xwayland v: 23.2.6 driver: X: loaded: nouveau unloaded: fbdev,modesetting,vesa failed: nvidia
6. This is the thread that helped me fix this problem. You have to scroll down to the Nvidia Graphics troubleshooting tips.
7. I had to add this "kernel boot parameter": nvidia_drm.fbdev=1 into the system. On this link you can see how to add it either temporarily or "permanently" (meaning you don't have to add it every time you start your system, but it is removable).
To add it permanently, you have to type the following commands into your terminal:
sudo nano /etc/default/grub GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nvidia_drm.fbdev=1" sudo update-grub
8. After you added it, reboot your system, and when it starts again, check if the parameter is there with the command: cat /proc/cmdline
9. If it's there, run the inxi -G command again, and see if it looks like it should.
10. If not, you might have to update the Kernel version of your Linux, which you can do in the Update Manager/View/Linux Kernels menu. I had to update mine from 6.8 to 6.11.
After all this you should be good to install the game, I made my life so much harder than it was necessarily so I hope my research on how to deal with an Nvidia Graphics card with Sims 2 on Linux is helpful to some of you. 😂
38 notes · View notes
autolenaphilia · 1 year ago
Text
I got a Steam Deck last year, and it’s such a great machine. It’s obviously inspired by Nintendo Switch, but it’s a lot better than a Switch.
The most important part is that it runs PC games. It’s fundamentally a Linux gaming PC in the form of a handheld console. There are a lot more games available than any console and and PC games both on Steam and GOG are a lot cheaper than console ones. You can get old or indie games for as cheap as 1-3 euro during sales. It’s a tremendous advantage for the deck over its console competitors.
And while the obvious intent of the deck is to get more people to buy games from Steam, it isn’t a walled garden at all. The deck launches into Steam when you boot it up, but you can go into desktop mode, and then it functions as a normal PC running a Linux distro. From there you can install Lutris or Heroic Games Launcher, and use it to easily install games you bought from GOG and Itch.io.
You can also do things like use the official dock or an unofficial usb-c hub to hook the deck up to a monitor, mouse and keyboard to use it as a desktop PC. Or you can hook it up to a tv to use it as home console.
The hardware is also a lot more powerful than a switch, the demanding triple-a games it can play is actually impressive. Although this comes with the natural disadvantage that it’s bulkier too. Putting more powerful PC parts demands more space for them. The deck is not something I bring with me outside. But then again I didn’t even do that with the 3DS, which was actually of a practical size to do that. The deck is portable enough that I can comfortably play lying in bed, which is how I always used my handheld consoles. So it’s perfect for me, but maybe not if you want to play it on the bus or something. It can probably be a fun addition to your luggage on longer trips though.
Of course, as mentioned, the Steam Deck uses Linux. This has both advantages and disadvantages. The main advantage is that it allows Valve to customize the operating system to make it fit with the machine it’s running on. The Deck’s SteamOS feels really well-integrated into the hardware, like how a proper console OS should be like. It’s not that dissimilar to how Sony used FreeBSD to make Playstation’s OS. Windows would not allow for this amount of customization and would not integrate as well.
And the open source nature of most Linux development allows Valve and the user to use existing open-source Linux software to their advantage. For example, the desktop mode is largely not a Valve creation, it’s an existing desktop environment for Linux, KDE Plasma. Yet it extends what the user can do with the deck to a great extent, like for installing non-steam games.
The main disadvantage to the Deck using Linux is that most PC games are built for Windows and don’t run natively under Linux. To run games built for Windows, the Deck has to run it through Proton, a compatibility layer which is Valve’s own gaming-focused version of Wine. Wine/Proton is far from perfect, sometimes games require extensive tinkering to work, or only run with serious issues, or don’t run at all, no matter what you do. Sometimes a game not working with Wine due to some random but serious issue that comes naturally from running a Windows executable on a Linux system via a compatibility layer. Sometimes it’s due to things like a multiplayer’s game anti-cheat system requiring access to the Windows kernel, and it will block a Linux pc from running the game because it has no Windows kernel.
This is however not as big a problem as it might otherwise be. Most games work, more or less. Valve has put a lot of work and money into both their own Proton and the Wine project as a whole, and they work a lot better than they did 10 years ago. Many run perfectly out of the box, because they are native, or play nice with Proton. Some require mere minor tinkering, like using a different version of Proton. And I generally don’t play multiplayer games, or if I do they don’t have draconian anti-cheats, so the games that are blocked because of anti-cheat are no big loss to me. The Steam Deck not running Fortnite is a plus in my book.
And we shouldn’t forget the Steam Deck verified system. Basically Valve employees check if the game runs out of the box with no issues on the Deck. They get a verified rating if they work with no issue, including both proton compatibility but also things like the controls working nice and the text being legible on the deck’s small screen. They also get a “playable” rating if the game runs to an acceptable standard but with tinkering required or other minor issues.
This is a good system. If you dislike tinkering, you can just buy and play games on steam with a verified rating, and the deck will work like a normal console for you, but with a lot cheaper games. It’s a good way to get people used to consoles into PC gaming, which is probably the point of the Deck.
And if you want more than deck verified games from Steam on the Deck, you are given the freedom to do it. I’ve gotten officially non-supported steam games to run on the deck by installing and using proton-GE and I’ve installed and played games from GOG.
The Steam Deck is really how a Linux PC for the common people should work. An easy and slick experience for casual users, but freedom and customization given to those that want it.
82 notes · View notes
winehq-official · 3 months ago
Text
How many different versions of the Linux kernel do y'all have ready to boot into? Personally, I have three just in case something goes wrong.
32 notes · View notes
arenaconspiracy · 8 months ago
Text
i figure i should probably mention this before it's too late
in my time using linux, i have never run a full system update. neither upgrading the packages, distro, or kernel.
i am unfamiliar with these processes, and have not devoted my time to familiarising myself with their full aspects.
i am calling to those more experienced than me, what should i know?
what are the risks i am taking by postponing an upgrade? what are common issues one may encounter upgrading either packages or kernel version? how do i know when it's best to do either? and any other information you wish to share
i am not clueless on this, and have a few leads such as seeing $apt upgrade once in a while, et cetera - but i encourage being as verbose as possible for anyone else less skilled who might stumble upon the post, and the offchance i'm unaware of some basic thing because my linux experience is entirely self taught or sourced from nagging my friends about doing a specific low-ish level thing, and reading the man pages of specific utilities when i need them
34 notes · View notes
liquidcrystalsky · 11 days ago
Text
okay whenever i talk about linux i say shit like "development is easier" or throw around things like LXC or POSIX/UNIX, or whatever insane terms but:
here's my list of actual shit that the average person would care about
Most updates including core system components usually don't even need a reboot(please reboot your computer at least once a week). If it does, it waits for me to reboot. It wont ever stop me in the middle of something to ask me to or force it on me.
If i plug in a device it will just work. I do not need to install drivers or some stinky special crap software for it to be detected, it will most often just work (every new linux kernel version adds so much support for new and old hardware. If it doesn't work now, it might work later!)
Package management. I've sung it's praises so much already but. every other device i know you can click a button and it will update all the apps on your device. except windows. App has an update? Open the software centre or Discover or whatever, click a button boom it's updated. All controlled from one place, no worries about does the app update itself, or whether you're downloading the right installer for your system, just use the package manager that comes with the system and it's good.
It's as minimal as i want it to be. Both windows and mac suffer a lot from just having a bunch of crap that you cannot get rid of. I installed a distro which didnt even come with a graphical interface, it was that minimal. If the distro you use is a bit more reasonable, but it comes with some software you dont want, you can just get rid of it. Shit if you wanted to you can just uninstall the linux kernel and it will just let you, and your computer will be unbootable. You have full control over what you want on your system. Also uninstalling things is less stupid, there's much less cases of leftover files or shit laying around in the registry. (there is no registry)
Audio. "linux audio is bad" is a thing of the past and i'm so serious. Pipewire is an amazing thing. I have full control over which applications give output to which speakers, being able to route one app to multiple speakers at the same time, or even doing things like mapping an input device to speakers so i can monitor it back very easily. I still dont understand why windows does the stupid "default communication device" thing, and they often reset my settings like randomly changing it to 24 bit audio when i only use 16 and certain programs break with it set to 24 idfk. Maybe this is less of an "average user" thing and more of a poweruser thing but i feel like there's SOMETHING in here which may be handy to the average person at some point. i love qpwgraph.
i could think of more but i dont use a computer like a normal person so it will take me time to think of it
14 notes · View notes
muffinlance · 11 months ago
Note
While I am by no means an expert in Linux distros (distributions) might I recommend two widely supported and user-friendly ones?
Linux distributions are basically packets of software that envelop the Linux kernel that determine the look, feel and function of the operating system. While there is a multitude of flavours, Debian-based systems such as Ubuntu and Mint are widely supported and have huge communities while being user friendly (i.e. keep the command line usage low/ explained). I managed to squeeze so much processing power out of my old laptop just by switching from Windows 10 to Linux Mint (very lightweight, has a graphic interface very similar to Windows). If you don't have to worry about every every Byte of RAM tho, I'd say Ubuntu is a very good start
Hope this helps <3
Thank you! I'm currently deciding between Mint with the Cinnamon desktop or Fedora with either KDE or Cinnamon. Going to try live USBs to test them out.
For others considering the switch: Mint is the most commonly recommended "easy and stable for new Linux users" version. Fedora is "stable but you're going to need to Google how to do more things until you're used to it." Cinnamon desktop is "things look like Windows", KDE is "not trying to be Windows but similarly intuitive, and you can customize everything", and the third common desktop is GNOME which is "doing it's own thing but looks like Mac, with lots of tiled apps".
Note that these are one-day-of-research impressions. I'll probably try GNOME too, but it looks instinctively ugly to me when I search up images of it.
Most common versions seem to have the option to try them before switching your computer over, so that's my next step.
51 notes · View notes
andmaybegayer · 2 months ago
Text
Hmm apparently the new style Logitech Bolt USB receiver can cause Linux systems to prematurely wake from sleep/fail to ever sleep, so if you've got one and you've had sleep issues, check that out. You can unplug it to test but long term it seems like running Solaar helps, or you can add a udev rule to block it from waking sleep. Some people say this is fixed on a recent kernel version? Check later.
16 notes · View notes
nixcraft · 2 years ago
Text
The Linux Kernel version is now officially 666 😈
Tumblr media
143 notes · View notes
kde-plasma-official · 6 months ago
Note
whats the status of like. using linux on a phone. it feels like there are two parallel universes, one that kde lives in where people use linux on phones, and one where if you google linux phones you discover theyre almost usable but they can barely make phone calls or send texts and they only run on like 4 models of phone
don't have much experience with linux on phone so anyone please correct me if i'm wrong but
one of the problems with phones is that every vendor and manufacturer adds their own proprietary driver blob to it and these have to be extracted and integrated into the kernel in order for the hardware to function.
as companies don't like to share their magic of "how does plastic slab make light", reverse engineering all your hardware is quite a difficult task. Sometimes there just isn't a driver for the camera of a phone model yet because no one was able to make it work.
So naturally, this takes a lot of time and tech is evolving fast so by the time a phone is completely compatible, next generations are already out and your new model obsolete.
Also important to note: most of this work is made by volunteers, people with a love for programming who put a lot of their own time into these things, most of them after their daytime jobs as a hobby.
Of course, there are companies and associations out there who build linux phones for a living. But the consumer hardware providers, like Pinephone, Fairphone and others out there aren't as big and don't have this much of a lobby behind them so they can't get their prices cheap. Also the manufacturers are actively working against our right to repair so we need more activism.
To make the phones still affordable (and because of said above driver issues) they have to use older hardware, sometimes even used phones from other manufacturers that they have to fix up, so you can't really expect a modern experience. At least you can revive some older phones. As everything Linux.
Then there's the software providers who many of are non-profits. KDE has Plasma Mobile, Canonical works on Ubuntu Touch, Debian has the Mobian Project and among some others there's also the Arch Linux ARM Project.
That's right baby, ARM. We're not talking about your fancy PC or ThinkPad with their sometimes even up to 64-bit processors. No no no, this is the future, fucking chrome jellyfishes and everything.
This is the stuff Apple just started building their fancy line of over-priced and over-engineered Fisher-Price laptop-desktops on and Microsoft started (Windows 10X), discontinued and beat into the smush of ChatGPT Nano Bing Open AI chips in all your new surface hp dell asus laptops.
What I was trying to say is, that program support even for the market dominating monopoles out there is still limited and.... (from my own experience from the workplace) buggy. Which, in these times of enshittification is a bad news. And the good projects you gotta emulate afterwards anyways so yay extra steps!
Speaking of extra steps: In order to turn their phone into a true freedom phone, users need to free themselves off their phones warranty, lose their shackles of not gaining root access, installing a custom recovery onto their phone (like TWRP for example), and also have more technical know-how as the typical user, which doesn't quite sounds commercial-ready to me.
So is there no hope at all?
Fret not, my friend!
If we can't put the Linux into the phone, why don't we put the phone around the Linux? You know... Like a container?
Thanks to EU regulations-
(US consumers, please buy the European versions of your phones! They are sometimes a bit more expensive, but used models of the same generation or one below usually still have warranty, are around the same price as over there in Freedom Valley, and (another side tangent incoming - because of better European consumer protection laws) sometimes have other advantages, such as faster charging and data transfer (USB-C vs lightning ports) or less bloated systems)
- it is made easier now to virtualize Linux on your phone.
You can download a terminal emulator, create a headless Linux VM and get A VNC client running. This comes with a performance limit though, as a app with standard user permissions is containerized inside of Android itself so it can't use the whole hardware.
If you have root access on your phone, you can assign more RAM and CPU to your VM.
Also things like SDL just released a new version so emulation is getting better.
And didn't you hear the news? You can run other things inside a VM on an iPhone now! Yup, and I got Debian with Xfce running on my Xiaomi phone. Didn't do much with it tho. Also Windows XP and playing Sims 1 on mobile. Was fun, but battery draining. Maybe something more for tablets for now.
Things will get interesting now that Google officially is a monopoly. It funds a lot of that stuff.
I really want a Steam Deck.
Steam phones would be cool.
17 notes · View notes
good-fwiend-in-wome · 3 months ago
Text
I'd just like to interject for a moment. What you're refering to as Linux, is in fact, GNU/Linux, or as I've recently taken to calling it, GNU plus Linux. Linux is not an operating system unto itself, but rather another free component of a fully functioning GNU system made useful by the GNU corelibs, shell utilities and vital system components comprising a full OS as defined by POSIX.
Many computer users run a modified version of the GNU system every day, without realizing it. Through a peculiar turn of events, the version of GNU which is widely used today is often called Linux, and many of its users are not aware that it is basically the GNU system, developed by the GNU Project.
There really is a Linux, and these people are using it, but it is just a part of the system they use. Linux is the kernel: the program in the system that allocates the machine's resources to the other programs that you run. The kernel is an essential part of an operating system, but useless by itself; it can only function in the context of a complete operating system. Linux is normally used in combination with the GNU operating system: the whole system is basically GNU with Linux added, or GNU/Linux. All the so-called Linux distributions are really distributions of GNU/Linux!
12 notes · View notes
netscapenavigator-official · 9 months ago
Text
Okay, so, I'm confused. Therefore, I'm turning to the Linux community of Tumblr for advice.
I'm trying to install the latest dev version of Wine.
WineHQ allows you to add Repositories based on your kernel version.
I'm running Zorin OS 17.2, which, according to the dev blog post, is based on Ubuntu 24.04 LTS (Noble).
However.
When using this command:
cat \etc\os-release
(Note: I had to use backwards slashes on Tumblr. Typing out c(slash)o results in this: c/o. I'm using the proper slashes irl.)
As WineHQ tells me too, and the terminal reports that
VERSION_CODENAME=jammy
Jammy is the codename for Ubuntu 22.04 LTS (what Zorin OS 17.0 was based on.)
So now I'm confused. I know this distro is supposed to be running Noble's kernel, but it's reporting that it's running on Jammy. Now I don't know whether to install the Jammy or Noble version of Wine, and I need help knowing which one to choose. Did the Zorin Devs forget to relabel the codename when they diverted from 22.04 in Zorin OS 17.1? Is something else going on that means this is actually still 22.04? Is there something else going on??
Idk, and I need help because idk what version of Wine to install.
14 notes · View notes